home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1997 February / macformat-047.iso / Demos / Simpsons Cartoon Studio™ Demo / Simpdata / simpmain / 00035_animation clip score script.ls < prev    next >
Encoding:
Text File  |  1996-09-06  |  316 b   |  18 lines

  1. global paletteVisibleP
  2.  
  3. on mouseDown
  4.   if the lastClick > 5 then
  5.     exit
  6.   end if
  7.   set whichSpr to the clickOn
  8.   hideFieldHiliterSpr(appMgr)
  9.   if paletteVisibleP then
  10.     hidePalette(paletteMgr)
  11.   end if
  12.   if the shiftDown then
  13.     moveClip(editMgr, whichSpr)
  14.   else
  15.     selectClip(editMgr, whichSpr)
  16.   end if
  17. end
  18.